
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color:#FFFFFF;
  color:#000000;
  text-align:start;
  font-size: 20px;
  
}

.para-photoone {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 10px;
}

h3 {
	text-align: center;
}
.side-photo {
  width: 150px;
  height: auto;
}

.para-phototwo {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  
}

.rightside-photo {
  width: 190px ;
  height: 180px;
  border-radius: 50%;
}

p {
	text-align: left;
}
h1, h2 {
  font-family: 'Pacifico', cursive;
  color: #c94c7c;
}

.section-title {
  text-align: center;
  margin-top: 40px;
  font-size: 2.2em;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 1rem 2rem;
  background-color:#FFFFFF;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color:#E0558D;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color:#FFEBF0;
  color: #E0558D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 4rem 2rem;
  color: white;
}

.hero-title {
  font-size: 3em;
  color:#FFFFFF;
  text-shadow:3px 3px 0 #264a4a ;
  
}

.primary-btn {
  background-color:#E35B79;
  color: #fff;
  padding: 1.0rem 1.8rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.primary-btn:hover {
  background-color:#FFCFE1;
  color:#E35B79;
}

/* Features Section */
.feature-boxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.feature-card {
  background-color: #fff0f5;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  width: 380px; 
  height: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.feature-card img {
  width: 300px;
  border-radius: 15px;
  max-width: 300px;
}

.feature-card:hover {
  transform: scale(1.05);
  z-index: 2;
}

.feature-boxes:hover .feature-card:not(:hover) {
  filter: blur(2px);
  opacity: 0.6;
  transform: scale(0.98);
}

/* About */
.about {
  padding: 3rem;
  background-color: #fce4ec;
  align-content: center;
}

.about-img img {
  max-width: 300px;
  border-radius: 15px;
  margin-top: 1rem;
}

/* Ticket Form */
.ticket-form {
  max-width: 100%;
  margin: auto;
  padding: 2rem;
  background:#E3F4EF;
  border-radius: 15px;
}

.ticket-form h3{
	color:#315E5E;
}

.hero-ticket {
  height: 40vh;
  background-image: url( "Images/pexels-ds-stories-9227962.jpg"); 
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-family: 'Pacifico', cursive;
  margin-bottom: 20px;
}

.primary-btn {
  padding: 12px 24px;
  background-color: #264a4a;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.primary-btn:hover {
  background-color:#638B91;
}

.featuresticket, .play-pass-card {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

.featureticket-card, .btn {
  background: #264a4a;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s;
  flex: 1 1 30%; 
  max-width: 600px;
  max-height: 400px;
	
}


.btn:hover {
  background:#6B9CA8;
}

.featureticket-boxes{
  display: flex;
  justify-content: space-around; 
  flex-wrap: wrap; 
  gap: 20px; 
  margin-top: 15px;
  margin-bottom: 40px;
}

.featureticket-card{
  background-color:#FFFFFF;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  width: 550px; 
  height: 250px;;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.featureticket-card img {
  width: 110%;
  display: inline-block;
  border-radius: 15px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%; 
  height: auto;
}

.featureticket-card:hover {
  transform: scale(1.05);
  z-index: 2;
  background-color:#DBEAED;
  
}

.featureticket-text {
  position: relative;
  z-index: 2; 
  color: white; 
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-top: 100px; 
}

.play-pass-options {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;  
  margin-top: 20px;
  padding-bottom: 10px;
  justify-content: center;
}

.play-pass-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  padding: 5px;
}

.play-pass-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.play-pass-card .btn {
  color: #264a4a;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #DBEAED;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-pass-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.play-pass-card:hover .btn {
  background-color:#80AFB6;
  transform: scale(1.05);
  color: #FFFFFF
}

.membership-box {
  background-color: #FFFFFF; 
  padding: 40px;
  margin-top: 10px;
  border-radius: 12px;
  text-align: center; 
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  border: solid;
  border-color: #E0558D ;
 
}

.membership-box p,
.membership-paragraph {
  text-align: center;       
  margin: 0 auto;
  max-width: 900px;         
  font-size: 20px;
  line-height: 1.6;
  display: block;
  color:#000000;
}

.membership-heading {
  font-family: Pacifico, cursive;
  text-align:center;
  color:#E0558D;
  font-size: 30px;
  margin: 10px;
  text-transform: uppercase; 
}

.btn:hover{
	transform: scale(1.15);
}

/* The Interactive Date*/
.date-carousel {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; 
  scrollbar-width: none; 
}

.date-carousel::-webkit-scrollbar {
  display: none; 
}

.date-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background-color:#DBEAED;
  color: #000;
  padding: 14px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s;
  font-weight: 600;
  cursor: pointer;
  min-width: 130px;
  text-align: center;
  font-size: 18px;
  border: 2px solid transparent;
}

.date-card:hover {
  transform: scale(1.08);
  background-color:  #80AFB6;
  color: #fff;
}

.date-card.selected {
  background-color: #E0558D ;
  color: #fff;
  border-color: #ff4d6d;
}


/* Contact */
.contact-container {
  display:flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff0f5;
  border-radius: 20px;
  margin: 2rem auto;
  width: 1000px;
  justify-content: center;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 15px;
  border: 1px solid #ccc;
}
.custom-footer {
    background-color:#6B6B6B;
    color: #fff;
    padding: 40px 60px 55px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
  }

 .footer-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

.footer-logo {
    height: 140px;
    width: auto;
	margin-top: 1rem;
  }

.footer-links {
    display: flex;
    justify-content: space-between;
    flex: 1;
    flex-wrap: wrap;
    gap: 20px;
	margin-right: 20rem;
  }

.footer-column {
    min-width: 150px;
    line-height: 1.6;
    border-left: 1px solid #fff;
    padding-left: 20px;
  }

.footer-column:first-child {
    border-left: none;
    padding-left: 0;
  }

.footer-contact-btn {
    margin-top: 10px;
    padding: 8px 20px;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
  }

.footer-contact-btn:hover {
    background-color: #fff;
    color: #525656;
  }

.footer-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
  }

  .footer-icons img {
    height: 24px;
    width: 24px;
    filter: invert(1);
	object-fit: contain;
	border-radius: 50px;
  }
.footer-icons img:hover{
	transform: scale(1.5);
	transition: 0.2s;
}

.footer-copyright {
  text-align: center;
  margin-top: -2rem;
  font-size: 1rem;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .feature-boxes, .booking-options, .play-pass-options, .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

.hero {
  background-image: url("Images/Hero images.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 6rem 2rem;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}

.hero .hero-title,
.hero .primary-btn {
  position: relative;
  z-index: 2;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.menu-toggle {
  display: none;     
  font-size: 2rem;
  cursor: pointer;
}

.menu-toggle img {
  height: 30px;
  width: auto;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block; 
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  gap: 30px;
  margin-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
}

.footer-contact .btn {
  background-color: #F0F0F0;
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-contact .btn:hover {
  background-color: #DFC0CC;
}

.footer-contact img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff0f5;
    position: absolute;
    top: 70px; 
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 40px;
  }
}

.feature-card:hover {
	background-color:#FFF4D3;
	transition: background-color 0.3s ease;
}

.social-icon {
  display: inline-block; 
  margin-right: 50px ;
  float:right;
}

.fb-logo {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.fb-logo:hover {
  transform: scale(1.1); 
  cursor: pointer;
}

.ig-logo {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease;
  
  
}

.ig-logo:hover {
  transform: scale(1.1); 
  cursor: pointer;
}

.interactive-cart {
  padding: 20px;
  background:#F2F6F6;
  border-radius: 10px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 940px;
}

.interactive-cart h3 {
	font-size: 25px;
}

#cart-box-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

#cart-box-list input {
  width: 60px;
  padding: 4px;
  text-align: center;
}

CART BOX WRAPPER
.cart-box {
  border: 2px solid #E4B5BE;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 12px;
  background-color: #fefefe;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item span:first-child {
  font-weight: 600;
  flex: 2;
}

.cart-item input[type="number"] {
  width: 60px;
  padding: 4px 8px;
  margin: 0 10px;
  text-align: center;
  border: 1px solid #bbb;
  border-radius: 6px;
  outline: none;
  transition: border 0.2s;
}

.cart-item input[type="number"]:focus {
  border-color: #333;
}

.cart-item button {
  background-color: #ff5e5e;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.cart-item button:hover {
  background-color: #e64545;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cart-item input[type="number"] {
    width: 100%;
  }
}

.btn {
  transition: transform 0.2s ease;
  color: #FFFFFF;
}

.btn:hover {
  transform: scale(1.05);
}

#cart-summary {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #ccc;
  text-align: right;
}

#checkout-btn {
  background-color: #264a4a ;
  color: white;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.3s ease;
  font-weight: bold;
  border-radius: 15px;
}

#checkout-btn:hover {
  transform: scale(1.05);
  background-color:  #80AFB6;
}

#cart-items {
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.cart-item input[type="number"] {
  width: 50px;
  margin-left: 5px;
  padding: 4px;
}

#cart-summary {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  text-align: right;
}

.btn-membership {
  border: 2px solid #E0558D; 
  border-radius: 15px;       
  padding: 10px 10px;        
  color: #E0558D;            
  background-color: transparent; 
  font-weight: bold;
  transition: 0.2s;
  margin-top: 10px; 
}

.btn-membership:hover {
  background-color: #FFE0ED; 
}

.section-title,h2 {
	color: #264a4a;
}
